home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / XDX76D (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  757 b   |  16 lines

  1. package java.awt.event;
  2.  
  3. public abstract class ComponentAdapter implements ComponentListener {
  4.    public void componentHidden(ComponentEvent e) {
  5.    }
  6.  
  7.    public void componentMoved(ComponentEvent e) {
  8.    }
  9.  
  10.    public void componentResized(ComponentEvent e) {
  11.    }
  12.  
  13.    public void componentShown(ComponentEvent e) {
  14.    }
  15. }
  16.